home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / glass / glass.lha / GLASS / contsens / p2c.h < prev    next >
C/C++ Source or Header  |  1991-02-14  |  11KB  |  400 lines

  1. #ifndef P2C_H
  2. #define P2C_H
  3.  
  4.  
  5. /* Header file for code generated by "p2c", the Pascal-to-C translator */
  6.  
  7. /* "p2c"  Copyright (C) 1989 Dave Gillespie, version 1.18.
  8.  * This file may be copied, modified, etc. in any way.  It is not restricted
  9.  * by the licence agreement accompanying p2c itself.
  10.  */
  11.  
  12.  
  13. #include <stdio.h>
  14.  
  15. #ifdef IBM
  16. #define BSD 0
  17. #endif
  18.  
  19. /* If the following heuristic fails, compile -DBSD=0 for non-BSD systems,
  20.    or -DBSD=1 for BSD systems. */
  21.  
  22. #ifdef M_XENIX
  23. # define BSD 0
  24. #endif
  25.  
  26. #ifdef FILE       /* a #define in BSD, a typedef in SYSV (hp-ux, at least) */
  27. # ifndef BSD      /*  (a convenient, but horrible kludge!) */
  28. #  define BSD 1
  29. # endif
  30. #endif
  31.  
  32. #ifdef BSD
  33. # if !BSD
  34. #  undef BSD
  35. # endif
  36. #endif
  37.  
  38.  
  39. #ifdef __STDC__
  40. # include <stddef.h>
  41. /*# include <stdlib.h> */
  42. # define HAS_STDLIB
  43. # define __CAT__(a,b)a##b
  44. #else
  45. # ifndef BSD
  46. #  include <memory.h>
  47. # endif
  48. # include <sys/types.h>
  49. # define __ID__(a)a
  50. # define __CAT__(a,b)__ID__(a)b
  51. #endif
  52.  
  53.  
  54. #ifdef BSD
  55. # include <strings.h>
  56. # define memcpy(a,b,n) (bcopy(b,a,n),a)
  57. # define memcmp(a,b,n) bcmp(a,b,n)
  58. # define strchr(s,c) index(s,c)
  59. # define strrchr(s,c) rindex(s,c)
  60. #else
  61. # include <string.h>
  62. #endif
  63.  
  64. #include <ctype.h>
  65. #include <math.h>
  66. #include <setjmp.h>
  67. #include <assert.h>
  68.  
  69.  
  70. typedef struct __p2c_jmp_buf {
  71.     struct __p2c_jmp_buf *next;
  72.     jmp_buf jbuf;
  73. } __p2c_jmp_buf;
  74.  
  75.  
  76. /* Warning: The following will not work if setjmp is used simultaneously.
  77.    This also violates the ANSI restriction about using vars after longjmp,
  78.    but a typical implementation of longjmp will get it right anyway. */
  79.  
  80. #ifndef FAKE_TRY
  81. # define TRY(x)         do { __p2c_jmp_buf __try_jb;  \
  82.                  __try_jb.next = __top_jb;  \
  83.                  if (!setjmp((__top_jb = &__try_jb)->jbuf)) {
  84. # define RECOVER(x)    __top_jb = __try_jb.next; } else {
  85. # define RECOVER2(x,L)  __top_jb = __try_jb.next; } else {  \
  86.                  if (0) { L: __top_jb = __try_jb.next; }
  87. # define ENDTRY(x)      } } while (0) 
  88. #else
  89. # define TRY(x)         if (1) {
  90. # define RECOVER(x)     } else do {
  91. # define RECOVER2(x,L)  } else do { L: ;
  92. # define ENDTRY(x)      } while (0)
  93. #endif
  94.  
  95.  
  96.  
  97. #ifdef M_XENIX  /* avoid compiler bug */
  98. # define SHORT_MAX  (32767)
  99. # define SHORT_MIN  (-32768)
  100. #endif
  101.  
  102.  
  103. /* The following definitions work only on twos-complement machines */
  104. #ifndef SHORT_MAX
  105. # define SHORT_MAX  (((unsigned short) -1) >> 1)
  106. # define SHORT_MIN  (~SHORT_MAX)
  107. #endif
  108.  
  109. #ifndef INT_MAX
  110. # define INT_MAX    (((unsigned int) -1) >> 1)
  111. # define INT_MIN    (~INT_MAX)
  112. #endif
  113.  
  114. #ifndef LONG_MAX
  115. # define LONG_MAX   (((unsigned long) -1) >> 1)
  116. # define LONG_MIN   (~LONG_MAX)
  117. #endif
  118.  
  119. #ifndef SEEK_SET
  120. # define SEEK_SET   0
  121. # define SEEK_CUR   1
  122. # define SEEK_END   2
  123. #endif
  124.  
  125. #ifndef EXIT_SUCCESS
  126. # define EXIT_SUCCESS  0
  127. # define EXIT_FAILURE  1
  128. #endif
  129.  
  130.  
  131. #define SETBITS  32
  132.  
  133.  
  134. #ifdef __STDC__
  135. # define Signed     signed
  136. # define Void       void      /* Void f() = procedure */
  137. # ifndef Const
  138. #  define Const     const
  139. # endif
  140. # ifndef Volatile
  141. # define Volatile  volatile
  142. # endif
  143. # define PP(x)      x         /* function prototype */
  144. # define PV()       (void)    /* null function prototype */
  145. typedef void *Anyptr;
  146. #else
  147. # define Signed
  148. # define Void       void
  149. # ifndef Const
  150. #  define Const
  151. # endif
  152. # ifndef Volatile
  153. #  define Volatile
  154. # endif
  155. # define PP(x)      ()
  156. # define PV()       ()
  157. typedef char *Anyptr;
  158. #endif
  159.  
  160. #ifdef __GNUC__
  161. # define Inline     inline
  162. #else
  163. # define Inline
  164. #endif
  165.  
  166. #define Register    register  /* Register variables */
  167. #define Char        char      /* Characters (not bytes) */
  168.  
  169. #ifndef Static
  170. # define Static     static    /* Private global funcs and vars */
  171. #endif
  172.  
  173. #ifndef Local
  174. # define Local      static    /* Nested functions */
  175. #endif
  176.  
  177. typedef Signed   char schar;
  178. /* typedef char uchar; */
  179. typedef char boolean;
  180. #ifndef true
  181. # define true    1
  182. # define false   0
  183. #endif
  184.  
  185.  
  186. typedef struct {
  187.     Anyptr proc, link;
  188. } _PROCEDURE;
  189.  
  190. #ifndef _FNSIZE
  191. # define _FNSIZE  120
  192. #endif
  193.  
  194.  
  195. extern Void    PASCAL_MAIN  PP( (int, Char **) );
  196. extern Char    **P_argv;
  197. extern int     P_argc;
  198. extern short   P_escapecode;
  199. extern int     P_ioresult;
  200. extern __p2c_jmp_buf *__top_jb;
  201.  
  202.  
  203. #ifdef P2C_H_PROTO   /* if you have Ansi C but non-prototyped header files */
  204. extern Char    *strcat      PP( (Char *, Const Char *) );
  205. extern Char    *strchr      PP( (Const Char *, int) );
  206. extern int      strcmp      PP( (Const Char *, Const Char *) );
  207. extern Char    *strcpy      PP( (Char *, Const Char *) );
  208. extern size_t   strlen      PP( (Const Char *) );
  209. extern Char    *strncat     PP( (Char *, Const Char *, size_t) );
  210. extern int      strncmp     PP( (Const Char *, Const Char *, size_t) );
  211. extern Char    *strncpy     PP( (Char *, Const Char *, size_t) );
  212. extern Char    *strrchr     PP( (Const Char *, int) );
  213.  
  214. extern Anyptr   memchr      PP( (Const Anyptr, int, size_t) );
  215. extern Anyptr   memmove     PP( (Anyptr, Const Anyptr, size_t) );
  216. extern Anyptr   memset      PP( (Anyptr, int, size_t) );
  217. #ifndef memcpy
  218. extern Anyptr   memcpy      PP( (Anyptr, Const Anyptr, size_t) );
  219. extern int      memcmp      PP( (Const Anyptr, Const Anyptr, size_t) );
  220. #endif
  221.  
  222. extern int      atoi        PP( (Const Char *) );
  223. extern double   atof        PP( (Const Char *) );
  224. extern long     atol        PP( (Const Char *) );
  225. extern double   strtod      PP( (Const Char *, Char **) );
  226. extern long     strtol      PP( (Const Char *, Char **, int) );
  227. #endif /*P2C_H_PROTO*/
  228.  
  229. #ifdef IBM 
  230. #define HAS_STDLIB
  231. #endif
  232.  
  233. #ifndef HAS_STDLIB
  234. extern Anyptr   malloc      PP( (size_t) );
  235. extern Void     free        PP( (Anyptr) );
  236. #endif
  237.  
  238. extern int      _OutMem     PV();
  239. extern int      _CaseCheck  PV();
  240. extern int      _NilCheck   PV();
  241. extern int    _Escape     PP( (int) );
  242. extern int    _EscIO      PP( (int) );
  243.  
  244. extern long     ipow        PP( (long, long) );
  245. extern Char    *strsub      PP( (Char *, Char *, int, int) );
  246. extern Char    *strltrim    PP( (Char *) );
  247. extern Char    *strrtrim    PP( (Char *) );
  248. extern Char    *strrpt      PP( (Char *, Char *, int) );
  249. extern Char    *strpad      PP( (Char *, Char *, int, int) );
  250. extern int      strpos2     PP( (Char *, Char *, int) );
  251. extern long     memavail    PV();
  252. extern int      P_peek      PP( (FILE *) );
  253. extern int      P_eof       PP( (FILE *) );
  254. extern int      P_eoln      PP( (FILE *) );
  255. extern Void     P_readpaoc  PP( (FILE *, Char *, int) );
  256. extern Void     P_readlnpaoc PP( (FILE *, Char *, int) );
  257. extern long     P_maxpos    PP( (FILE *) );
  258. extern Char    *P_trimname  PP( (Char *, int) );
  259. extern long    *P_setunion  PP( (long *, long *, long *) );
  260. extern long    *P_setint    PP( (long *, long *, long *) );
  261. extern long    *P_setdiff   PP( (long *, long *, long *) );
  262. extern long    *P_setxor    PP( (long *, long *, long *) );
  263. extern int      P_inset     PP( (unsigned, long *) );
  264. extern int      P_setequal  PP( (long *, long *) );
  265. extern int      P_subset    PP( (long *, long *) );
  266. extern long    *P_addset    PP( (long *, unsigned) );
  267. extern long    *P_addsetr   PP( (long *, unsigned, unsigned) );
  268. extern long    *P_remset    PP( (long *, unsigned) );
  269. extern long    *P_setcpy    PP( (long *, long *) );
  270. extern long    *P_expset    PP( (long *, long) );
  271. extern long     P_packset   PP( (long *) );
  272. extern int      P_getcmdline PP( (int l, int h, Char *line) );
  273. extern Void     TimeStamp   PP( (int *Day, int *Month, int *Year,
  274.                  int *Hour, int *Min, int *Sec) );
  275. extern Void    P_sun_argv  PP( (char *, int, int) );
  276.  
  277.  
  278. /* I/O error handling */
  279. #define _CHKIO(cond,ior,val,def)  ((cond) ? P_ioresult=0,(val)  \
  280.                       : P_ioresult=(ior),(def))
  281. #define _SETIO(cond,ior)          (P_ioresult = (cond) ? 0 : (ior))
  282.  
  283. /* Following defines are suitable for the HP Pascal operating system */
  284. #define FileNotFound     10
  285. #define FileNotOpen      13
  286. #define FileWriteError   38
  287. #define BadInputFormat   14
  288. #define EndOfFile        30
  289.  
  290. /* Creating temporary files */
  291. #if (defined(BSD) || defined(NO_TMPFILE)) && !defined(HAVE_TMPFILE)
  292. # define tmpfile()  (fopen(tmpnam(NULL), "w+"))
  293. #endif
  294.  
  295. /* File buffers */
  296. #define FILEBUF(f,sc,type) sc int __CAT__(f,_BFLAGS);   \
  297.                sc type __CAT__(f,_BUFFER)
  298.  
  299. #define RESETBUF(f,type)   (__CAT__(f,_BFLAGS) = 1)
  300. #define SETUPBUF(f,type)   (__CAT__(f,_BFLAGS) = 0)
  301.  
  302. #define GETFBUF(f,type)    (*((__CAT__(f,_BFLAGS) == 1 &&   \
  303.                    ((__CAT__(f,_BFLAGS) = 2),   \
  304.                 fread(&__CAT__(f,_BUFFER),  \
  305.                       sizeof(type),1,(f)))),\
  306.                   &__CAT__(f,_BUFFER)))
  307. #define AGETFBUF(f,type)   ((__CAT__(f,_BFLAGS) == 1 &&   \
  308.                  ((__CAT__(f,_BFLAGS) = 2),   \
  309.                   fread(&__CAT__(f,_BUFFER),  \
  310.                     sizeof(type),1,(f)))),\
  311.                 __CAT__(f,_BUFFER))
  312.  
  313. #define PUTFBUF(f,type,v)  (GETFBUF(f,type) = (v))
  314. #define CPUTFBUF(f,v)      (PUTFBUF(f,char,v))
  315. #define APUTFBUF(f,type,v) (memcpy(GETFBUF(f,type), (v),  \
  316.                    sizeof(__CAT__(f,_BUFFER))))
  317.  
  318. #define GET(f,type)        (__CAT__(f,_BFLAGS) == 1 ?   \
  319.                 fread(&__CAT__(f,_BUFFER),sizeof(type),1,(f)) :  \
  320.                 (__CAT__(f,_BFLAGS) = 1))
  321.  
  322. #define PUT(f,type)        (fwrite(&__CAT__(f,_BUFFER),sizeof(type),1,(f)),  \
  323.                 (__CAT__(f,_BFLAGS) = 0))
  324. #define CPUT(f)            (PUT(f,char))
  325.  
  326. #define BUFEOF(f)       (__CAT__(f,_BFLAGS) != 2 && P_eof(f))
  327. #define BUFFPOS(f)       (ftell(f) - (__CAT__(f,_BFLAGS) == 2))
  328.  
  329.  
  330. /* Memory allocation */
  331. #ifdef __GCC__
  332. # define Malloc(n)  (malloc(n) ?: (Anyptr)_OutMem())
  333. #else
  334. extern Anyptr __MallocTemp__;
  335. # define Malloc(n)  ((__MallocTemp__ = malloc(n)) ? __MallocTemp__ : (Anyptr)_OutMem())
  336. #endif
  337. #define FreeR(p)    (free((Anyptr)(p)))    /* used if arg is an rvalue */
  338. #define Free(p)     (free((Anyptr)(p)), (p)=NULL)
  339.  
  340. /* sign extension */
  341. #define SEXT(x,n)   ((x) | -(((x) & (1L<<((n)-1))) << 1))
  342.  
  343. /* packed arrays */   /* BEWARE: these are untested! */
  344. #define P_getbits_UB(a,i,n,L)   ((int)((a)[(i)>>(L)-(n)] >>   \
  345.                        (((~(i))&((1<<(L)-(n))-1)) << (n)) &  \
  346.                        (1<<(1<<(n)))-1))
  347.  
  348. #define P_getbits_SB(a,i,n,L)   ((int)((a)[(i)>>(L)-(n)] <<   \
  349.                        (16 - ((((~(i))&((1<<(L)-(n))-1))+1) <<\
  350.                           (n)) >> (16-(1<<(n))))))
  351.  
  352. #define P_putbits_UB(a,i,x,n,L) ((a)[(i)>>(L)-(n)] |=   \
  353.                  (x) << (((~(i))&((1<<(L)-(n))-1)) << (n)))
  354.  
  355. #define P_putbits_SB(a,i,x,n,L) ((a)[(i)>>(L)-(n)] |=   \
  356.                  ((x) & (1<<(1<<(n)))-1) <<   \
  357.                  (((~(i))&((1<<(L)-(n))-1)) << (n)))
  358.  
  359. #define P_clrbits_B(a,i,n,L)    ((a)[(i)>>(L)-(n)] &=   \
  360.                  ~( ((1<<(1<<(n)))-1) <<   \
  361.                    (((~(i))&((1<<(L)-(n))-1)) << (n))) )
  362.  
  363. /* small packed arrays */
  364. #define P_getbits_US(v,i,n)     ((int)((v) >> ((i)<<(n)) & (1<<(1<<(n)))-1))
  365. #define P_getbits_SS(v,i,n)     ((int)((long)(v) << (SETBITS - (((i)+1) << (n))) >> (SETBITS-(1<<(n)))))
  366. #define P_putbits_US(v,i,x,n)   ((v) |= (x) << ((i) << (n)))
  367. #define P_putbits_SS(v,i,x,n)   ((v) |= ((x) & (1<<(1<<(n)))-1) << ((i)<<(n)))
  368. #define P_clrbits_S(v,i,n)      ((v) &= ~( ((1<<(1<<(n)))-1) << ((i)<<(n)) ))
  369.  
  370. #define P_max(a,b)   ((a) > (b) ? (a) : (b))
  371. #define P_min(a,b)   ((a) < (b) ? (a) : (b))
  372.  
  373.  
  374. /* Fix toupper/tolower on Suns and other stupid BSD systems */
  375. #ifdef toupper
  376. # undef toupper
  377. # undef tolower
  378. # define toupper(c)   my_toupper(c)
  379. # define tolower(c)   my_tolower(c)
  380. #endif
  381.  
  382. #ifndef _toupper
  383. # if 'A' == 65 && 'a' == 97
  384. #  define _toupper(c)  ((c)-'a'+'A')
  385. #  define _tolower(c)  ((c)-'A'+'a')
  386. # else
  387. #  define _toupper(c)  toupper(c)
  388. #  define _tolower(c)  tolower(c)
  389. # endif
  390. #endif
  391.  
  392.  
  393. #endif    /* P2C_H */
  394.  
  395.  
  396.  
  397. /* End. */
  398.  
  399.  
  400.